home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-11-19 | 424 b | 40 lines | [TEXT/MPS ] |
- /*
- File: BackDepLib1.cp
-
- Contains: Test for having a library with a dependency on a library
- that is dependent on it.
-
- Copyright: © 1992-1993 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __BACKDEPLIB__
- #include "BackDepLib.h"
- #endif
-
- TBackDep1::TBackDep1()
- {
- }
-
- TBackDep1::~TBackDep1()
- {
- }
-
- void TBackDep1::Foo()
- {
- }
-
-
- TBackDep3::TBackDep3()
- {
- }
-
- TBackDep3::~TBackDep3()
- {
- }
-
- void TBackDep3::Foo()
- {
- }
-
-